home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
escapek.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
823b
|
20 lines
/* RCSVER $Id: escapek.sql,v 1.1 1999-02-25 14:59:46-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: escapek.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the escapek table. escapek contains information
* from the escape key farebox record.
* Changes:
************************************************************************* */
CREATE TABLE escapek
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_escapek REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
CONSTRAINT pk_escapek PRIMARY KEY (det_seq_num)
);